ASP.NET MVC Controls | ComponentOne
C1.Web.Mvc Namespace / DropDown<T> Class
Members

In This Topic
    DropDown<T> Class
    In This Topic
    DropDown control (abstract) contains an input element and a button used to show or hide the drop-down.
    Syntax
    'Declaration
     
    
    <ScriptsAttribute(Mono.Cecil.CustomAttributeArgument[])>
    Public MustInherit Class DropDown(Of T) 
       Inherits ItemsBoundControl(Of T)
       Implements IDropDown, ITemplate 
    [Scripts(Mono.Cecil.CustomAttributeArgument[])]
    public abstract class DropDown<T> : ItemsBoundControl<T>, IDropDown, ITemplate  
    Type Parameters
    T
    Remarks
    Derived classes must override the _createDropDown method to create whatever editor they want to show in the drop down area (a list of items, a calendar, a color editor, etc).
    Inheritance Hierarchy

    System.Object
       C1.Web.Mvc.Component
          C1.Web.Mvc.Control
             C1.Web.Mvc.ItemsBoundControl<T>
                C1.Web.Mvc.DropDown<T>
                   C1.Web.Mvc.ComboBoxBase<T>

    See Also